home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / processes / mp threaded sort / buildconditionals.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.7 KB  |  66 lines

  1. /*
  2.     File:        BuildConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg    
  7.  
  8.     Copyright:    Copyright © 1994-1999 by Apple Computer, Inc., All Rights Reserved.
  9.  
  10.                 You may incorporate this Apple sample source code into your program(s) without
  11.                 restriction. This Apple sample source code has been provided "AS IS" and the
  12.                 responsibility for its operation is yours. You are not permitted to redistribute
  13.                 this Apple sample source code as "Apple sample source code" after having made
  14.                 changes. If you're going to re-distribute the source, we require that you make
  15.                 it clear in the source that the code was descended from Apple sample source
  16.                 code, but that you've made changes.
  17.  
  18.     Change History (most recent first):
  19.                 7/27/1999    Karl Groethe    Updated for Metrowerks Codewarror Pro 2.1
  20.                 9/9/94        DRF                Conditionalize AOCE support. Assume just a base system for now.
  21.                 9/1/94        DRF                We only run under System 7.0 or later. NOTE: This typically
  22.                                             requires rebuilding precompiled headers.
  23.  */
  24.      
  25.          
  26.  
  27. #ifndef    _BUILDCONDITIONALS_
  28. #define    _BUILDCONDITIONALS_
  29.  
  30. #ifndef SystemSevenOrLater
  31. #define    SystemSevenOrLater    1
  32. #endif
  33.  
  34. #ifndef    USEOLDUNIVERSALHEADERS
  35. #define    USEOLDUNIVERSALHEADERS        0
  36. #endif
  37.  
  38. #ifndef    qDebug
  39. #define    qDebug                        0
  40. #endif
  41.  
  42. #ifndef    qAOCEAware
  43. #define    qAOCEAware                    0
  44. #endif
  45.  
  46. #ifndef    qUseQuickDrawGX
  47. #define    qUseQuickDrawGX                0
  48. #define    qRequireDrawGX                0
  49. #define    qUseQuickDrawGXDebugging    0
  50. #endif
  51.  
  52. #ifndef    qRequireThreadManager
  53. #define    qRequireThreadManager    1
  54. #endif
  55.  
  56. #ifndef    qInlineInputAware
  57. #define    qInlineInputAware    0
  58. #endif
  59.  
  60. #if    qUseQuickDrawGX
  61. //    Tell QuickDrawGX that we use universal headers
  62. #define    ppcinterfaces        1
  63. #endif
  64.  
  65. #endif
  66.